home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-08 | 1.1 KB | 50 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWODMiss.h
- // Release Version: $ 1.0d11 $
- //
- // Copyright: © 1995 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- // Contains various types missing in Windows version of OpenDoc (because
- // it is a few releases behind the Macintosh one)
-
- #ifndef FWODMISS_H
- #define FWODMISS_H
-
- #if FW_OPENDOC_VERSION < FW_OPENDOC_DR2
-
- // ----- OpenDoc Includes -----
-
- #ifndef _ODTYPES_
- #include <ODTypes.h>
- #endif
-
- class ODFrame;
- class ODFacet;
-
- struct ODEventInfo
- {
- ODFrame* embeddedFrame;
- ODFacet* embeddedFacet;
- ODPoint where;
- ODBoolean propagated;
- };
-
- #define kODEvtMouseEnter (WM_USER + 0x100 + 0)
- #define kODEvtMouseWithin (WM_USER + 0x100 + 1)
- #define kODEvtMouseLeave (WM_USER + 0x100 + 2)
-
- #define kODFrameObject "OpenDoc:ObjectType:Frame"
- #define kODNonPersistentFrameObject "OpenDoc:ObjectType:NonPersistentFrame"
-
- #define kODDropIsMove kODDropMove
-
- #define kODNULLID 0
-
- #define kODPresDefault "OpenDoc:Presentation:Default"
-
- #endif
- #endif
-